翻訳と辞書
Words near each other
・ Automatic Lubricator
・ Automatic Man
・ Automatic Media
・ Automatic message accounting
・ Automatic message exchange
・ Automatic meter reading
・ Automatic Midnight
・ Automatic milking
・ Automatic Musical Instruments Collector's Association
・ Automatic mutual exclusion
・ Automatic number announcement circuit
・ Automatic number identification
・ Automatic number plate recognition
・ Automatic Packet Reporting System
・ Automatic painting
Automatic parallelization
・ Automatic parallelization tool
・ Automatic parking
・ Automatic Performance Control
・ Automatic Picture Transmission
・ Automatic Pilot
・ Automatic pistol
・ Automatic platform gate
・ Automatic Press / VIP
・ Automatic Pressure Tracking Adiabatic Calorimeter
・ Automatic programming
・ Automatic quartz
・ Automatic radar plotting aid
・ Automatic redial
・ Automatic Reference Counting


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Automatic parallelization : ウィキペディア英語版
Automatic parallelization

Automatic parallelization, also auto parallelization, autoparallelization, or parallelization, the last one of which implies automation when used in context, refers to converting sequential code into multi-threaded or vectorized (or even both) code in order to utilize multiple processors simultaneously in a shared-memory multiprocessor (SMP) machine. The goal of automatic parallelization is to relieve programmers from the tedious and error-prone manual parallelization process. Though the quality of automatic parallelization has improved in the past several decades, fully automatic parallelization of sequential programs by compilers remains a grand challenge due to its need for complex program analysis and the unknown factors (such as input data range) during compilation.
The programming control structures on which autoparallelization places the most focus are loops, because, in general, most of the execution time of a program takes place inside some form of loop.
There are two main approaches to parallelization of loops: pipelined multi-threading and cyclic multi-threading.〔
Simone Campanoni, Timothy Jones, Glenn Holloway, Gu-Yeon Wei, David Brooks.
("The HELIX Project: Overview and Directions" ).
2012.

For example, consider a loop that on each iteration applies a hundred operations, runs for a thousand iterations. This can be thought of as a grid of 100 columns by 1000 rows, a total of 100,000 operations. Cyclic multi-threading assigns each row to a different thread. Pipelined multi-threading assigns each column to a different thread.
==Cyclic multi-threading==

A cyclic multi-threading parallelizing compiler tries to split up a loop so that each iteration can be executed on a separate processor concurrently.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Automatic parallelization」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.